An agile-ready project management platform for modern teams. Built in PHP 7.4+ with MySQL and TailwindCSS, Aureo empowers teams to manage projects, tasks, sprints, and time tracking all in one place.
# Clone the repository
git clone https://github.com/rbenzing/aureo-project-management.git
# Navigate to the project directory
cd aureo-project-management
# Install PHP dependencies
composer install
# Install Node.js dependencies
npm install
Powerful features without the enterprise complexity
Advanced task system with subtasks, priorities, and custom types (story, bug, task, epic). Full CRUD operations.
Full Scrum/Agile support with sprint management, backlog prioritization, and velocity tracking.
Built-in time tracking with billable hours, project costing, and comprehensive reports.
Granular permission system with customizable roles and secure session management.
Robust data persistence with MySQL. Includes schema, migrations (manual), and optional sample data.
Reusable templates for projects and tasks, coupled with dashboard analytics for insights.
Built with performance and developer experience in mind
Get Aureo Project Management running locally in minutes
git clone https://github.com/rbenzing/aureo-project-management.git
cd aureo-project-management
composer install
npm install
cp .env.example .env
# Edit .env with your database credentials and other settings
# Create your MySQL database
mysql -u root -p -e "CREATE DATABASE aureo_db;"
# Import the schema
mysql -u root -p aureo_db < schema.sql
# Optional: Import sample data
mysql -u root -p aureo_db < sample-data.sql
npm run build
Point your web server document root to the public/
directory.
See README for Apache (.htaccess) and Nginx examples.
# Example for PHP's built-in development server
composer run start
# App will be available at http://localhost:8000
After configuration, access the application via your web server's domain or IP.
Prefer Docker? You can use Docker Compose for an easier setup:
docker-compose up -d
Ensure Docker and Docker Compose are installed. This will set up PHP, MySQL, and Nginx.
Aureo Project Management is open source and welcomes contributions
Found a bug? Let us know on GitHub Issues
Submit pull requests and help improve Aureo Project Management
Share ideas and connect with other developers
Star the repository and start building with Aureo Project Management today
View on GitHub